home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSList-0497 / AMOSLIST / 000211_amos-request@svcs1.digex.net_Fri Apr 25 19:09:53 1997.msg < prev    next >
Text File  |  1998-06-24  |  3KB  |  72 lines

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail3.access.digex.net (8.8.5/8.8.5) with ESMTP id TAA11512
  3.     for <mcox@access.digex.net>; Fri, 25 Apr 1997 19:09:53 -0400 (EDT)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id PAA05990
  6.     for amos-out; Fri, 25 Apr 1997 15:42:02 -0400 (EDT)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id PAA05986
  9.     for <amos-list@svcs1.digex.net>; Fri, 25 Apr 1997 15:42:02 -0400 (EDT)
  10. Received: from quartz.ucs.ualberta.ca (quartz.ucs.ualberta.ca [129.128.5.19])
  11.     by mail3.access.digex.net (8.8.5/8.8.5) with ESMTP id PAA19283
  12.     for <amos-list@access.digex.net>; Fri, 25 Apr 1997 15:41:50 -0400 (EDT)
  13. Received: from henday.hfs.ualberta.ca (uucp@henday.hfs.ualberta.ca [129.128.163.10])
  14.     by quartz.ucs.ualberta.ca (8.8.5/8.8.5) with ESMTP id NAA38106
  15.     for <amos-list@access.digex.net>; Fri, 25 Apr 1997 13:41:42 -0600
  16. Received: (from uucp@localhost) by henday.hfs.ualberta.ca (8.6.12/8.6.9) id NAA05836 for <amos-list@access.digex.net>; Fri, 25 Apr 1997 13:41:42 -0600
  17. Date: Fri, 25 Apr 1997 13:41:42 -0600
  18. Message-Id: <199704251941.NAA05836@henday.hfs.ualberta.ca>
  19. Received: from UNKNOWN(172.16.1.110), claiming to be "[172.16.1.110]"
  20.  via SMTP by henday.hfs.ualberta.ca, id smtpd05832aaa; Fri Apr 25 13:41:35 1997
  21. X-Sender: cyallop@172.16.1.1
  22. Mime-Version: 1.0
  23. Content-Type: text/plain; charset="us-ascii"
  24. To: amos-list@access.digex.net
  25. From: cyallop@gpu.srv.ualberta.ca (Curtis Yallop)
  26. Subject: Assigns and MouseoMeter
  27. Status: RO
  28. X-Status: 
  29.  
  30. Why does anyone use assigns for their games/utils??  Why not just use
  31. relative dir names!  Like game.exe has folders data, gfx etc.  Game just
  32. calls data/... or gfx/...
  33.  
  34. Alternatives:
  35.  
  36. PROGDIR:   -- assigned to each executable when run
  37. Dir$       -- Current Dir in Amos
  38.  
  39. In C, you can even read argv[0] to get the Command in case they typed a
  40. path before the exe name  ie   hd1:games/mygame.exe
  41.  
  42. I have too many assigns!  And the DEFER option of Assign is no replacement!
  43. (although it's much help)
  44.  
  45. I can understand HELP: libs: dev: t: clip: s: (OS ones) and maybe even MUI:
  46.  
  47. But not each Util and Game!  When I move things on my HD, I usually just
  48. move the Prog's Dir or the Prog and all it's files.  I don't want to worry
  49. about re-assigning assigns!  Why would anyone want to move the executable
  50. somewhere strange, away from the data??  If so, use a CMD_LINE arg!
  51.  
  52. Also, a tip to check if an assign/device exists:
  53. ASSIGN devname: EXISTS >nil:
  54. if NOT WARN EQ 5
  55.  echo It is Here.
  56. endif
  57.  
  58. For instance I check if df1: exists, then addbuffers.  (for when I remove
  59. df1: temporarily, I hate getting errors!)
  60.  
  61. ----
  62.  
  63. Also, when I put AMOSPro in PAL mode, MouseOMeter keeps reading the Hard
  64. Drive every second (flashing the HD light and making noises).  Is there a
  65. fix or is it MouseoMeter's bug?
  66.  
  67. ============================================================================
  68. Curtis Yallop       "Ms-Dos Sucks Dirt"      cyallop@gpu.srv.ualberta.ca
  69. Amiga 1200 - '030 28MHz, 6MB RAM, 540HD      http://www.ualberta.ca/~cyallop
  70. ============================================================================
  71.  
  72.